home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Various / DevDisk 65 (1989)(DevWare PD).zip / DevDisk 65 (1989)(DevWare PD).adf / 3d / makefile < prev    next >
Makefile  |  1990-07-11  |  221b  |  15 lines

  1. CFLAGS= +l -s
  2.  
  3. .c.o32:
  4.         cc $(CFLAGS) -o $@ $*.c
  5.  
  6. test.o32: test.c 3d.c
  7.         cc $(CFLAGS) -o test.o32 test.c
  8.  
  9. test: test.o32
  10.         ln test.o32 +Q -lm32 -lc32
  11.  
  12. cube: cube.o32
  13.         ln cube.o32 +Q -lm32 -lc32
  14.  
  15.